DataSource for Entity Framework in WPF
C1.LiveLinq Namespace / IndexedQueryExtensions Class / GroupBy Method / GroupBy<TSource,TKey,TElement>(IIndexedSource<TSource>,Expression<Func<TSource,TKey>>,Expression<Func<TSource,TElement>>) Method
The type of the elements of source.
The type of the key returned by keySelector.
The type of the elements in the IGrouping.
An C1.LiveLinq.Indexing.IIndexedSource<T> whose elements to group
A function to extract the key for each element.
A function to map each source element to an element in the IGrouping.

In This Topic
    GroupBy<TSource,TKey,TElement>(IIndexedSource<TSource>,Expression<Func<TSource,TKey>>,Expression<Func<TSource,TElement>>) Method
    In This Topic
    Groups the elements of a collection according to a specified key selector function and projects the elements for each group by using a specified function.
    Syntax

    Parameters

    source
    An C1.LiveLinq.Indexing.IIndexedSource<T> whose elements to group
    keySelector
    A function to extract the key for each element.
    elementSelector
    A function to map each source element to an element in the IGrouping.

    Type Parameters

    TSource
    The type of the elements of source.
    TKey
    The type of the key returned by keySelector.
    TElement
    The type of the elements in the IGrouping.

    Return Value

    A collection of IGrouping objects each containing a collection of objects of type TElement and a key.
    See Also